Method: Vips::Image#>

Defined in:
lib/vips8/image.rb

#>(other) ⇒ Image

Relational more than with an image, constant or array.

Parameters:

  • other (Image, Real, Array<Real>)

    relational more than with this

Returns:

  • (Image)

    result of more than

[View source]

871
872
873
874
# File 'lib/vips8/image.rb', line 871

def >(other)
    other.is_a?(Vips::Image) ? 
        relational(other, :more) : relational_const(other, :more)
end